home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / 4d55c.zip / 4DOS55C.DOC < prev    next >
Text File  |  1994-12-20  |  7KB  |  165 lines

  1.                                JP Software
  2.  
  3.              4DOS 5.5 rev B ==> 5.5 rev C Patch Documentation
  4.  
  5.                             December 20, 1994
  6.  
  7.  
  8. Copyright 1994, JP Software Inc., All Rights Reserved.  Published by JP
  9. Software Inc., P.O. Box 1470, E. Arlington, MA 02174 USA, (617)
  10. 646-3975.  4DOS is a registered trademark of JP Software Inc.
  11.  
  12.  
  13. This file explains how to install the 4DOS 5.5 rev C patch.
  14.  
  15. To use the patch, you must have:
  16.  
  17.      * JP Software's PATCH.EXE program.  This program is in a separate
  18.      file, PATCH.ZIP on CompuServe, or 4DPATCH.ZIP on bulletin boards
  19.      and the Internet.  [* See note below.]
  20.  
  21.      * A copy of 4DOS 5.5 rev B.  The simplest way to check your
  22.      revision level is to use the 4DOS VER /R command.
  23.  
  24.      If you find you have rev A of 4DOS 5.5, you must download an
  25.      additional patch file to update your current copy of 4DOS to rev B
  26.      before you can apply this latest rev C patch.  To update from rev A
  27.      to rev B you need the patch file 4D25B.ZIP; This file should be
  28.      available from the same place where you got this rev C file.
  29.  
  30. To use this patch, copy the 4DOS55C.RTP file to the directory where your
  31. 4DOS version 5.5 files are stored. Make sure JP Software's PATCH.EXE is
  32. in the same directory, or in a directory on your PATH, then enter the
  33. command:
  34.  
  35.       patch 4dos55c
  36.  
  37. This patch converts 4DOS 5.5 rev B to version 5.5 rev C.  It modifies
  38. only 4DOS.COM, all other files are unchanged from rev B.  Branding (name
  39. and serial number) information in your 4DOS.COM file will be preserved
  40. in the modified file.
  41.  
  42. If you want to test 4DOS.COM to make sure the patch worked, restart
  43. 4DOS, then use the VER /R command.  This command will report "4DOS
  44. Revision B" (if the patch did not work) or "4DOS Revision C" (if it did
  45. work).
  46.  
  47. If you are short on disk space and receive a message that there is not
  48. enough space to perform the patch, you can use a command like this to
  49. reduce the disk space required:
  50.  
  51.       patch /noundo 4dos55c
  52.  
  53. This will make recovery slightly more difficult in the unlikely event of
  54. a power failure or similar problem during the patch process, but will
  55. reduce the disk space required to perform the patch.
  56.  
  57.  
  58. [* JP Software's PATCH.EXE is the version 1.10 patch program from the
  59. .RTPatch patch software sold by PocketSoft Inc.  If you have a copy of
  60. PATCH.EXE version 1.10 or later from another company which also uses
  61. .RTPatch to update its software, you can use it with JP Software
  62. patches. However, we recommend that you do NOT use version 2.0 of
  63. PATCH.EXE under OS/2.  When PATCH.EXE 2.0 is used under OS/2 it patches
  64. the files properly, but does not correctly update the dates and times of
  65. the patched files.]
  66.  
  67.  
  68. 4DOS version 5.5 rev C includes the following changes to version 5.5
  69. rev B:
  70.  
  71. General Feature Changes:
  72.  
  73.      * Changed the version string to use the country-defined decimal
  74.        character, so IF tests on the version level will work properly.
  75.  
  76.      * Comparisons like "if %_date == 12-20-94 ..."  now work as they
  77.        did in 5.0. Note that even though these tests now work, this
  78.        approach is not recommended.  To test two strings quotes should
  79.        be used around the strings. Otherwise the fact that the strings
  80.        begin with digits may cause them to be interpreted as numbers.
  81.  
  82.      * Fixed a problem with an @@ key alias turning off echoing for
  83.        subsequent @ key aliases.
  84.  
  85.      * Fixed a problem with numeric color names with values greater than
  86.        7 when BRI or BLI was not used).  Also, the "ON" is now optional.
  87.  
  88.      * Fixed a problem with numeric comparisons where one had a decimal
  89.        component and the other didn't (e.g., "if 2 == 2.0").
  90.  
  91.      * Truncated the description length returned by @DESCRIPT and
  92.        DESCRIBE to a maximum of 255 characters, to avoid line length
  93.        problems.  DIR and SELECT can still display longer descriptions,
  94.        you just can't go over 255 characters on the command line (as
  95.        always).
  96.  
  97.      * Worked around a bug in NCACHE and SMARTDRV 4.0, which were
  98.        destroying the internal command list (usually affecting PUSHD and
  99.        POPD) if SDFlush=Yes was used.
  100.  
  101.  
  102. Variable and Function Changes:
  103.  
  104.      * @ALIAS: Now truncates aliases greater than the maximum line size
  105.        (255 in DOS, 1023 in OS/2 & NT) to avoid line length errors.
  106.  
  107.      * @ATTRIB: Fixed a problem with not matching against all the
  108.        specified attributes.
  109.  
  110.      * @EVAL: Fixed a problem which was truncating the returned value.
  111.  
  112.      * @FILEREAD in binary mode will now properly terminate the input
  113.        string.
  114.  
  115.      * @INT and @NUMERIC now do more exhaustive testing.
  116.  
  117.  
  118. Batch File Changes:
  119.  
  120.      * Fixed a problem with ESC not working with SETDOS /Y1 (the ESC
  121.        should have been equivalent to an 'R').
  122.  
  123.      * Fixed a problem with the batch file line (used in error messages)
  124.        not getting updated inside command groups or line continuations
  125.        (where the previous line ended in an escape character).
  126.  
  127.  
  128. Command Changes:
  129.  
  130.      * ?:  Fixed a problem with a "?..." command being executed even if
  131.        it was inside an IFF block where the condition was false.  Also
  132.        fixed a problem when the command following a "?" was an alias.
  133.  
  134.      * ?:  The "?" command can now be redirected or piped; using
  135.        redirection or piping will no longer cause "?" to be interpreted
  136.        as a batch prompt command.
  137.  
  138.      * ALIAS: Added a check for UNKNOWN_CMD alias loops.
  139.  
  140.      * DIR: Fixed case problems with SETDOS /U1 and the /F and /L
  141.        switches.
  142.  
  143.      * DO: Fixed an obscure problem if you do a LEAVE in a DO UNTIL, in
  144.        the same loop pass where DO would have terminated anyway.
  145.  
  146.      * DRAWBOX: Slowed down the ZOOM option on fast systems so you can
  147.        actually see it.
  148.  
  149.      * EXCEPT: Fixed a problem with ranges.
  150.  
  151.      * FFIND: Fixed a bug where FFIND would loop endlessly if there was
  152.        a match on the last line of a file, with no terminating CR/LF,
  153.        and a bug in the /E option.  Also, FFIND will no longer return
  154.        the "." and ".." directories.
  155.  
  156.      * LIST: Now supports files with CR's only (no LF's).  LIST should
  157.        now display files properly whether lines are terminated by CR,
  158.        LF, or CR/LF.
  159.  
  160.      * SELECT: Fixed a problem with calling up LIST within SELECT, then
  161.        hitting ^C in LIST and again when you return to SELECT.  Also
  162.        fixed an occasional problem with garbage on the SELECT header
  163.        line after doing a LIST from within SELECT.
  164.  
  165.